home *** CD-ROM | disk | FTP | other *** search
- unit Unit1;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, DragTool, ExtCtrls, StdCtrls, FileCtrl, Buttons;
-
- type
- TForm1 = class(TForm)
- Panel1: TPanel;
- DragToolBar2: TDragToolBar;
- Edit2: TEdit;
- Button2: TButton;
- Button3: TButton;
- DragToolBar1: TDragToolBar;
- SpeedButton1: TSpeedButton;
- SpeedButton2: TSpeedButton;
- SpeedButton3: TSpeedButton;
- SpeedButton4: TSpeedButton;
- SpeedButton5: TSpeedButton;
- DriveComboBox1: TDriveComboBox;
- FileListBox1: TFileListBox;
- DirectoryListBox1: TDirectoryListBox;
- FilterComboBox1: TFilterComboBox;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- var MyDragTool: TDragToolBar;
- begin
- MyDragTool := TDragToolBar.Create(Panel1);
- MyDragTool.Parent := Panel1;
- MyDragTool.SnapToGrid := True;
- MyDragTool.Name := 'DynamicToolBar';
- MyDragTool.Title := 'This was Created at Run Time';
- MyDragTool.Height := 33;
- end;
-
- end.
-